Enum ValidationResult.SEVERITY
java.lang.Object
java.lang.Enum<ValidationResult.SEVERITY>
de.aoksystems.da.kernpruefung.xml.validator.ValidationResult.SEVERITY
- All Implemented Interfaces:
Serializable,Comparable<ValidationResult.SEVERITY>
- Enclosing class:
- ValidationResult
Enum für den Schweregrad des Fehlers.
- Author:
- yi00075
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic ValidationResult.SEVERITYReturns the enum constant of this type with the specified name.static ValidationResult.SEVERITY[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
OK
Fehlergrad "OK". -
WARN
Fehlergrad für Warnungen. Warnungen führen nicht zu invaliden XML-Dokumenten. -
ERROR
Fehlergrad für "normale" Fehler. Normale Fehler sind Fehler, die ein XML-Dokument invalide machen. -
FATAL
Fehlergrad für "fatale" Fehler. Fatale Fehler sind Fehler, die den Parser an der korrekten Weiterarbeit hindern.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-